home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 4 / MacAddict_004_1996_12.iso / Demos / BBEdit 4.0 Demo Folder / HTML Templates / Include Example.tmpl < prev    next >
Text File  |  1996-06-23  |  561b  |  32 lines

  1. <!--
  2.     This example illustrates the use of the #include directive. You can
  3.     include HTML source code by reference into another file, rather than
  4.     having to copy and paste (and deal with the headaches of keeping
  5.     all of your HTML code in sync.
  6. -->
  7.  
  8. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
  9. <HTML>
  10. <HEAD>
  11.  
  12. <TITLE>#TITLE#</TITLE>
  13. <!--
  14. Created:    #COMPDATE#
  15. By:            #USERNAME#
  16. Where:        #ROOT##FILENAME#
  17. -->
  18.  
  19. <!-- #include "baseURL.incl" -->
  20. <!-- end include -->
  21.  
  22. </HEAD>
  23. <BODY>
  24.  
  25.  
  26. #BODYTEXT#
  27.  
  28. <!-- #include "footer.incl" -->
  29. <!-- end include -->
  30. </BODY>
  31. </HTML>
  32.